.whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    left: 8px;
    background-color: green;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 21px;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 15px;
}

.facebook {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px;
    left: 8px;
    background-color: #3b5998;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 21px;
    z-index: 100;
}

.facebook-icon {
    margin-top: 15px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    /* Asegura que esté encima de otros elementos */
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1010;
    /* Para estar sobre la capa de fondo */
    text-align: center;
}

.popup h2 {
    margin-top: 0;
}

.popup form {
    display: flex;
    flex-direction: column;
}

.popup input,
.popup textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.popup button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #0056b3;
}

.open-popup-btn:hover {
    background-color: #0056b3;
}